ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / DXUtil Class / Read Method / Read<T>(IntPtr) Method
Type of a data to read.
Memory location to read from.

In This Topic
    Read<T>(IntPtr) Method
    In This Topic
    Reads the specified T data from a memory location.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Read(Of T As {New, Struct})( _
       ByVal source As IntPtr _
    ) As T
    public static T Read<T>( 
       IntPtr source
    )
    where T: new(), struct

    Parameters

    source
    Memory location to read from.

    Type Parameters

    T
    Type of a data to read.

    Return Value

    The data read from the memory location.
    See Also